home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1997 August / Walnut Creek CDROM.7z / VOL_400 / 460_01 / YACL0160.ZIP / uidemo / calc / main.cxx < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-29  |  281 b   |  20 lines

  1.  
  2. // ---------------------- main.cxx ------------------------
  3.  
  4. #include "ui/applic.h"
  5.  
  6. #include "appwin.h"
  7.  
  8. #if defined(__BORLANDC__)
  9. extern unsigned _stklen = 32000;
  10. #endif
  11.  
  12. int UI_Application::Main (int, char* [])
  13. {
  14.     MakeTopWindow (new AppWindow);
  15.     Run();
  16.     return 0;
  17. }
  18.  
  19.  
  20.